Invalid Numeric Value Error in CS3

I was editing the kerning on a project, and accidentally hit a letter or something. When I hit enter an invalid numeric error panel popped up which was fine. Except when I hit the "OK" button it just pops up again and again and won't go away. Now I might lose everything because this error keeps popping up and I can't save or anything. Anyone have any suggestions at all?

Jesseham-JAh5zI wrote:
It totally blows, but there is nothing you can do at this point.  Sorry!  It's gotten us all at least once...
Can anyone verify that this is fixed in CS4?
[note - in cs3 this will lock up your illy] Type some text, Set the kerning to optical, place your cursor in the text somewhere, then in the text panel(palette) tab into or click in the kerning box and change the number there.  A warning comes up saying invalid something-or-other.  Click okay and the warning just keeps coming up
Win XP SP3, AI CS3... doesn't seem to be a problem... i get the invalid message... clik ok and all is ok...

Similar Messages

  • Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API. This is a serious error and contributes to an overall degradation of system stability and reliability. This notice is a courtesy

    Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API. This is a serious error and contributes to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.

    This console log is a note to the developers of whatever application you are using. You can safely ignore it.

  • Form error Invalid numeric value 06-Jun-13 for column FECHA_CAPTURA

    hi,
    i have an APEX form that updates a table. The form items were created autmatically from the table fields. The 3rd field is a date field and therefore the corresponding date field on the form has a calender icon on its right side. i choose a date from this calender and when i hit the update button i receive this message:
    Invalid numeric value 06-Jun-13 for column FECHA_CAPTURA
    any ideas?

    Hi,
    Could we get you to change 1010319 to a meaningful handle -- I'm Howard.
    In order to give helpful answers, we usually need more information including as much relevant information as possible upfront. This should include:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)
    Browser(s) and version(s) used
    Theme used
    Template(s) used / modified -- (Revelant/important for some problems.)
    Region/item type(s)
    and more detail about what you want to do.
    Are you using ARP (Automatic Row Processing)?
    Do you do any validations?
    Could you make a trival 1-page application on apex.oracle.com duplicating the problem there?
    Howard

  • Popup Key LOV, NULL and "Invalid numeric value undefined for column"

    Hello.
    I've created an item based on database column of NUMBER type and set the following properties:
    Display As = Popup Key LOV (Displays description, returns key value)
    List of values definition=select 'display_value' d, 1 r from dual
    Null display value=%
    Null return value=
    Display Null=Yes
    When I select "%" in the LOV and try to apply changes to database I get error:
    ORA-20001: Error in DML: p_rowid=1781, p_alt_rowid=N1, p_rowid2=, p_alt_rowid2=. ORA-20001: Invalid numeric value undefined for column N2
    Error Unable to process row of table TTT.
    If I set Display As = Select List, all works fine. But I need Popup Key LOV.
    Could anybody help me?
    I use Application Express 2.2.1.00.04

    Hi all,
    I did my homework and solved this issue. First I would like to thank Patrick Wolf for the invaluable help he gives out on thread Re: Null value handling in LOVs The code presented here is just a minor edit to his code, but an essential one when dealing with Popup Key LOV items.
    Here's what I did:
    1. Create an Application Process.
    Name: RemoveNulls
    Sequence: 0
    Point: On Submit: After Page Submission - Before Computations and Validations
    Process Text:
    BEGIN
        FOR rItem IN
          ( SELECT ITEM_NAME
              FROM APEX_APPLICATION_PAGE_ITEMS
             WHERE APPLICATION_ID   = TO_NUMBER(:APP_ID)
               AND PAGE_ID          IN (TO_NUMBER(:APP_PAGE_ID), 0)
               AND LOV_DISPLAY_NULL = 'Yes'
               AND LOV_DEFINITION   IS NOT NULL
               AND LOV_NULL_VALUE   IS NULL
        LOOP
            IF (V(rItem.ITEM_NAME) = '%null' || '%' OR V(rItem.ITEM_NAME) = 'undefined')
            THEN
                Apex_Util.set_session_state(rItem.ITEM_NAME, NULL);
            END IF;
        END LOOP;
    END;Error Message: #SQLERRM#Condition: None
    2. You should be able to submit a Popup Key LOV with a NULL value now.
    Once again, THANKS, Patrick! You rock! I'm seriously thinking of trying ApexLib now :)
    Georger

  • Checkbox and ORA-20507: Invalid numeric value #:# for column

    Hi All,
    I'm facing problems Checkboxes in a form.
    I created a form and report on a table. one of the fields on the form is a checkbox and when ever I want to create a new record or update with more than one value for the checkkbox I obtain the following error:
    ORA-20507: Invalid numeric value #:# for column COLUMN_NAME Where by #:# is numbers
    I think the error occurs at the processes of get_pk and process_row_of_......
    how should I change the processes to accommodate the checkbox values.
    Kind regards
    Mel

    Hi Roel,
    Colunm = number
    LOV Definition
    select product display, prod_num return from product_category_vw
    where prod_num not in (select p.prod_num from product_user_tb p, user_tb u
    where p.user_num = u.user_number
    and u.user_name = :APP_USER)
    ORDER BY 1column = number
    LOV Definition
    select school d, sch_id r from school_tbRegards
    Mel

  • DBMS_LOB.LOADFROMFILE causes numeric value error

    The code below causes a numeric value error when I do LOADFROMFILE. Do you have any suggestions. Thanks.
    declare
    locator bfile;
    cloblocator clob;
    buffer varchar2(1000);
    lsize integer := 0;
    amount INTEGER := 1000;
    v_filename varchar(50) := 'notify_offer_tbl';
    begin
    locator := bfilename('IDEA_DATA_DIR','notify_offer_tbl');
    insert into imsa.t_unix_logs values ('notify_offer_tbl', locator, empty_clob());
    Select fileloclob into cloblocator from imsa.t_unix_logs where filename ='notify_offer_tbl' for update;
    if dbms_lob.fileexists(locator) = 1 then
    dbms_output.put_line('Exists');
    if dbms_lob.fileisopen(locator) = 1 then
    dbms_output.put_line('open');
    else
    dbms_output.put_line('close');
    dbms_lob.fileopen(locator, DBMS_LOB.FILE_READONLY);
    lsize := dbms_lob.getlength(locator);
    dbms_output.put_line('File Length: ' || to_char(lsize));
    DBMS_LOB.LOADFROMFILE(cloblocator, locator, lsize);
    commit;
    end if;
    end if;
    DBMS_LOB.READ(cloblocator, amount, 1, buffer);
    dbms_output.put_line('File ' || buffer);
    DBMS_LOB.FILECLOSE(locator);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Error -- ' || SUBSTR(sqlerrm, 1, 200));
    DBMS_LOB.FILECLOSE(locator);

    Yes. The column clobcol (in the SELECT in your example) should be set to empty_clob() or already contain a CLOB, before selecting the column value into the local variable. The example in the DBMS_LOB documentation page is misleading as it does not mention this.
    Note also that it is best to use dbms_lob.getlength to establish the value for
    the amount parameter.
    Hope this helps others searching for information on this - I have spent some painful hours working this out!
    Peter

  • Numeric Value error 1426

    Hi,
    How to retrive the value of below query.
    I am encountered with numeric value error.
    select power(10,333333333333) from dual;Thanks in advance

    You did look up the error in the online documentation?
    Why not?
    If you would have done so you would have gotten
    Cause: Evaluation of an value expression causes an overflow/underflow.
    Action: Reduce the operands.
    Looks clear to me.
    Looks like you should have done this first in order to avoid redundant questions.
    Sybrand Bakker
    Senior Oracle DBA
    Edited by: sybrand_b on 25-jun-2009 2:49

  • Serious Problem In Oracle9i regarding numerical value error.

    Dear Experts,
    The below code gives numerical value error where cursor is fetching data(in the 'for' line).
    But the cursor's query is executing properly in a SQL window.
    Version is Oracle9i Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    Database Server created in Windows platform.
    Code------
    CREATE OR REPLACE Procedure INTGD.Ge_b_p_Test_Decode As
    Cursor c_Decode Is
    select decode(txt_party_sex,'M','MALE','FEMALE') Txt_Refund_Type
    from ge_b_motor_pool_policy_details
    Union
    Select 'P' From Gen_Proposal;
    lv_refund_type varchar2(10);
    l_Error_Msg Varchar2(500);
    Begin
    For i In c_Decode Loop
    Begin
    lv_refund_type := i.Txt_Refund_Type;
    Insert Into Ge_b_Test_Decode Values (lv_refund_type);
    Commit;
    Exception
    When Others Then
    l_Error_Msg := Substr(Sqlerrm, 1, 500);
    Dbms_Output.Put_Line(l_Error_Msg);
    End;
    End Loop;
    End;
    Please help ASAP.
    Regards,
    jishnu

    Dear Experts
    CREATE TABLE GE_B_MOTOR_POOL_POLICY_DETAILS
    TXT_RO_CODE VARCHAR2(10 BYTE) NOT NULL,
    TXT_OO_CODE VARCHAR2(10 BYTE) NOT NULL,
    NUM_POLICY_NUMBER NUMBER(25),
    NUM_ENDORSEMENT_SRL_NO NUMBER(3),
    NUM_SCHEDULE_CERTIFICATE_NO NUMBER(5),
    TXT_ENDORSMENT_POLICY_NUMBER VARCHAR2(23 BYTE),
    NUM_REFERENCE_NUMBER NUMBER(14) NOT NULL,
    DAT_REFERENCE_DATE DATE NOT NULL,
    NUM_XML_JOB_NO NUMBER(20),
    TXT_PRE_CAL_BASIS VARCHAR2(20 BYTE),
    CUR_NET_TP_PREMIUM NUMBER(20),
    CUR_TOT_TP_PREMIUM NUMBER(20),
    CUR_TP_SERVICE_TAX NUMBER(20),
    DAT_POLICY_EXPIRE_DATE DATE,
    NUM_POL_TERM NUMBER(3),
    TXT_POL_TERM_UNIT CHAR(1 BYTE),
    TXT_PARTY_TYPE CHAR(1 BYTE),
    TXT_PARTY_CODE VARCHAR2(30 BYTE),
    TXT_PARTY_FIRSTNAME VARCHAR2(60 BYTE),
    TXT_PARTY_MIDDLENAME VARCHAR2(60 BYTE),
    TXT_PARTY_LASTNAME VARCHAR2(60 BYTE),
    TXT_PARTY_SEX CHAR(1 BYTE),
    DAT_POLICY_START_DATE DATE,
    TXT_PARTY_ADDR1 VARCHAR2(100 BYTE),
    TXT_PARTY_ADDR2 VARCHAR2(100 BYTE),
    TXT_PARTY_ADDR3 VARCHAR2(100 BYTE),
    NUM_PARTY_PINCODE NUMBER(6),
    TXT_PARTY_STAKE_CODE VARCHAR2(10 BYTE),
    CUR_PAYMENT NUMBER(10),
    TXT_POL_INDICATOR VARCHAR2(10 BYTE),
    TXT_MAIN_POL_TYPE VARCHAR2(10 BYTE),
    TXT_POLICY_CATEGORY_FLEET_SCHD CHAR(1 BYTE),
    DAT_VOUCHAR_DATE DATE,
    TXT_PAY_MODE VARCHAR2(10 BYTE),
    TXT_PARTY_NAME VARCHAR2(60 BYTE),
    CUR_VOUCHAR_AMOUNT NUMBER(20),
    TXT_VOUCHAR_NUMBER VARCHAR2(30 BYTE),
    TXT_INSTRUMENT_NUMBER VARCHAR2(20 BYTE),
    DAT_INSTRUMENT_DATE DATE,
    TXT_NARRATION VARCHAR2(100 BYTE),
    DAT_INTIMATION_DATE DATE,
    DAT_INCEPTION_DATE DATE,
    TXT_PRODUCT_CODE VARCHAR2(10 BYTE),
    TXT_POLICY_EVENT VARCHAR2(10 BYTE),
    TXT_NIL_ENDORSEMENT_INDICATOR CHAR(1 BYTE),
    TXT_ENDORSEMENT_TYPE VARCHAR2(23 BYTE),
    TXT_REFUND_TYPE VARCHAR2(23 BYTE),
    TXT_CANCELLATION_TYPE VARCHAR2(23 BYTE),
    TXT_MEMBER_CODE VARCHAR2(10 BYTE),
    TXT_EVENT_SEQ_NO VARCHAR2(10 BYTE),
    TXT_MEMBER_POLICY_NO VARCHAR2(42 BYTE),
    DAT_VEHICLE_PURCHASE DATE,
    TXT_VEHICLE_NEW_SECOND_HAND VARCHAR2(10 BYTE),
    TXT_VEHICLE_CATEGORY VARCHAR2(10 BYTE),
    TXT_VEHI_COMMERCIAL_PASSENGER VARCHAR2(10 BYTE),
    TXT_VEHI_REGISTRATION_NO_1 VARCHAR2(3 BYTE),
    TXT_VEHI_REGISTRATION_NO_2 VARCHAR2(3 BYTE),
    TXT_VEHI_REGISTRATION_NO_3 VARCHAR2(3 BYTE),
    TXT_VEHI_REGISTRATION_NO_4 VARCHAR2(4 BYTE),
    TXT_REGISTRATION_NO VARCHAR2(15 BYTE),
    DAT_VEHI_REGISTRATION_DATE DATE,
    TXT_VEHI_REG_AUTHORITY VARCHAR2(30 BYTE),
    NUM_VEHI_MANU_YEAR NUMBER(10),
    TXT_VEHI_ENGINE_NO VARCHAR2(30 BYTE),
    TXT_VEHI_CHASSIS_NO VARCHAR2(30 BYTE),
    TXT_MAKE_MODEL VARCHAR2(10 BYTE),
    NUM_GROSS_VEHICLE_WT NUMBER(15),
    NUM_SEATING_CAPACITY_CABIN NUMBER(3),
    TXT_VEHI_FULE_TYPE VARCHAR2(10 BYTE),
    TXT_LPG_CNG_KIT_IN_BUILT VARCHAR2(3 BYTE),
    TXT_TYPE_OF_PERMIT VARCHAR2(10 BYTE),
    TXT_VEHI_USED_TUTION VARCHAR2(3 BYTE),
    TXT_VEHI_USED_COMMERCIAL VARCHAR2(3 BYTE),
    TXT_VEHI_DESIGNED_HANDICAPED VARCHAR2(3 BYTE),
    TXT_EXTN_OF_GEO_REQUIRED VARCHAR2(3 BYTE),
    NUM_CUBIC_CAPACITY NUMBER(5),
    NUM_LICENSE_CARRYING_CAPACITY NUMBER(8),
    TXT_NO_TRLR_TOWED_BY_TOW_VEH VARCHAR2(10 BYTE),
    TXT_TRAILERS_TOWED_BY VARCHAR2(10 BYTE),
    CUR_POL_RISK_PREMIUM NUMBER(20),
    CUR_POL_RISK_DISCOUNT NUMBER(20),
    CUR_POL_RISK_OVERLOAD NUMBER(20),
    CUR_TOT_POL_RISK NUMBER(20),
    TXT_WISH_TO_REDUCE_TPPD_COVER VARCHAR2(3 BYTE),
    NUM_NO_NON_FARE_PAY_PASSENGER NUMBER(3),
    NUM_NO_NON_FARE_PASS_EXCL_EMP NUMBER(3),
    TXT_WISH_TO_COVER_EMP_NON_FARE VARCHAR2(3 BYTE),
    NUM_NO_OF_LL_TO_DRVR_CLNR_CON NUMBER(3),
    NUM_NO_OF_WCL_TO_COOLIES NUMBER(3),
    NUM_NO_OF_PAID_DRVR_CLNR_COND NUMBER(3),
    CUR_TOT_SI_FOR_DRVR_CLNR_CON NUMBER(15),
    NUM_NO_UNNAMED_PERSNS_PRSNLACC NUMBER(3),
    CUR_TOT_SI_FOR_UNNAMED_PERSNS NUMBER(15),
    TXT_TYPE_OF_GOODS_TRANSPORTING VARCHAR2(10 BYTE),
    TXT_HOLD_VALID_DRV_LICENSE VARCHAR2(10 BYTE),
    NUM_PROPOSAL_TYPE NUMBER(5),
    NUM_MEMBER_ENDORSEMENT_TYPE NUMBER(5),
    NUM_VEHICLE_INTL_TYPE NUMBER(5),
    NUM_MEMBER_MAKE_CODE NUMBER(5),
    NUM_MEMBER_PAYMENT_MODE NUMBER(5),
    NUM_MEMBER_POLICY_CODE NUMBER(3),
    NUM_XID NUMBER(10),
    TXT_MULTI_PAYMENT CHAR(1 BYTE),
    TXT_POLICY_FLAG CHAR(1 BYTE),
    NUM_RECORD_SEQUENCE NUMBER(30),
    NUM_SCHEDULE_NUMBER NUMBER(5),
    NUM_SCHEDULE_ENTRY_NUMBER NUMBER(10),
    DAT_EVENT_DATE DATE,
    NUM_OUT_XID NUMBER(10),
    DAT_PROCESS_RUN_DATE DATE,
    TXT_HIRE_IMT35_APPLICABLE VARCHAR2(3 BYTE),
    DAT_ENDT_START_DATE DATE,
    TXT_OTHER_MAKE VARCHAR2(50 BYTE),
    TXT_TRANSIT_FROM VARCHAR2(30 BYTE),
    TXT_TRANSIT_TO VARCHAR2(30 BYTE),
    NUM_ACTUAL_DISTANCE NUMBER(15),
    TXT_TRAILER_ATTACHED VARCHAR2(1 BYTE),
    NUM_NO_TRAILER_ATTAH_TOWING_BY NUMBER(10),
    TXT_TRAILER_PURPOSE_TOWED_BY VARCHAR2(3 BYTE),
    TYPE_OF_OTHER_VEHI_MISC VARCHAR2(10 BYTE),
    NUM_NUMBER_OF_DRIVERS NUMBER(3),
    NUM_NUMBER_OF_TRADE_CERTIFI VARCHAR2(3 BYTE),
    TXT_WHETHER_TWO_WHEELER_OR_NOT VARCHAR2(3 BYTE),
    CUR_WAGES_IN_RS NUMBER(15),
    NUM_AREA_IN_SQUARE_METER NUMBER(15),
    TXT_TYPE_OF_PREMISES VARCHAR2(3 BYTE),
    NUM_AREA_OPENAIRCARPARK_IMT64 NUMBER(15),
    NUM_NO_PREMISES_BEYOND_450 NUMBER(3),
    TXT_LIABILITYWORKAWAYIMT65 VARCHAR2(3 BYTE),
    NUM_NO_LLPASSEXCLUDEMP_IMT46 NUMBER(3),
    TXT_WHETHER_VEHIUSEDDEMOIMT60 VARCHAR2(3 BYTE),
    TXT_WHETHERVEHICLETUITIONIMT61 VARCHAR2(3 BYTE),
    NUM_NO_LLDRIVERCLNRCONDUCIMT28 NUMBER(3),
    NUM_MISC_VEHICLECLASS_MEMBER NUMBER(10),
    TXT_PA_OD_COVER_REQUIRED VARCHAR2(1 BYTE),
    NUM_DISTANCE_TRAVELLED_VEHICLE NUMBER(10),
    NUM_NO_OF_DAYS NUMBER(10),
    CUR_TP_LOADING NUMBER(20),
    TXT_DUMMY_1 VARCHAR2(100 BYTE),
    TXT_DUMMY_2 VARCHAR2(100 BYTE),
    TXT_DUMMY_3 VARCHAR2(100 BYTE),
    TXT_DUMMY_4 VARCHAR2(100 BYTE),
    TXT_DUMMY_5 VARCHAR2(100 BYTE),
    NUM_DUMMY_1 NUMBER(2),
    NUM_DUMMY_2 NUMBER(2),
    NUM_DUMMY_3 NUMBER(3),
    NUM_DUMMY_4 NUMBER(4),
    DAT_DUMMY_1 DATE,
    DAT_DUMMY_2 DATE,
    DAT_DUMMY_3 DATE,
    DAT_DUMMY_4 DATE
    here txt_party_sex char(1) column is used in the pl/sql program
    CREATE TABLE GEN_PROPOSAL
    NUM_REFERENCE_NUMBER NUMBER(14) NOT NULL,
    DAT_REFERENCE_DATE DATE NOT NULL,
    NUM_POLICY_NUMBER NUMBER(20) DEFAULT 0 NOT NULL,
    NUM_POLICY_YEAR NUMBER(4) DEFAULT 0 NOT NULL,
    NUM_DEPARTMENT_CODE NUMBER(3) NOT NULL,
    NUM_POLICY_TYPE NUMBER(3) NOT NULL,
    NUM_ENDORSEMENT_NUMBER NUMBER(20) DEFAULT 0 NOT NULL,
    NUM_ENDORSEMENT_YEAR NUMBER(4) DEFAULT 0 NOT NULL,
    NUM_PROPOSAL_TYPE NUMBER(2) NOT NULL,
    TXT_PROPOSAL_STATUS VARCHAR2(2 BYTE) NOT NULL,
    NUM_COVERNOTE_NUMBER NUMBER(16),
    DAT_COVERNOTE_DATE DATE,
    TXT_NAME_OF_INSURED VARCHAR2(200 BYTE) NOT NULL,
    MEM_ADDRESS_OF_INSURED VARCHAR2(255 BYTE) NOT NULL,
    TXT_TELEPHONE VARCHAR2(30 BYTE),
    TXT_FAX VARCHAR2(15 BYTE),
    NUM_BUSINESS_CODE NUMBER(2),
    NUM_INDUSTRY_CODE NUMBER(4),
    NUM_PREVIOUS_POLICY_YEAR NUMBER(4),
    NUM_PREVIOUS_POLICY_NUMBER NUMBER(20),
    NUM_PREVIOUS_OFFICE_CODE NUMBER(6),
    NUM_PREVIOUS_POLICY_TYPE NUMBER(3),
    CUR_TOTAL_PREMIUM NUMBER(13,2) NOT NULL,
    CUR_PREMIUM_RECEIVED NUMBER(13,2) DEFAULT 0 NOT NULL,
    NUM_DEVELOPMENT_OFFICER_CODE NUMBER(8),
    NUM_AGENT_CODE NUMBER(14),
    NUM_SPECIAL_CLIENT_CODE NUMBER(8),
    DAT_DATE_OF_ISSUE_OF_POLICY DATE,
    DAT_DATE_OF_EXPIRY_OF_POLICY DATE,
    DAT_PREV_POLICY_EXPIRY_DATE DATE,
    TXT_OCCUPATION VARCHAR2(50 BYTE),
    NUM_NO_OF_CLAIMS NUMBER(8) DEFAULT 0 NOT NULL,
    NUM_ENDORSEMENT_TYPE NUMBER(2),
    DAT_HOURS_EFFECTIVE_FROM DATE,
    CUR_PREMIUM_COMPUTED NUMBER(13,2) NOT NULL,
    CUR_SERVICE_TAX NUMBER(13,2) DEFAULT 0 NOT NULL,
    CUR_ENDT_AMOUNT NUMBER(13,2) DEFAULT 0 NOT NULL,
    CUR_ENDT_SERTAX NUMBER(13,2) DEFAULT 0 NOT NULL,
    CUR_STAMP_DUTY NUMBER(11,2) DEFAULT 0 NOT NULL,
    YN_STAMP_DUTY_CHARGEABLE NUMBER(1) NOT NULL,
    CUR_SUM_INSURED NUMBER(16) NOT NULL,
    NUM_OWN_SHARE NUMBER(5,2) NOT NULL,
    NUM_AGENT_BILL_NO NUMBER(12) DEFAULT 0 NOT NULL,
    NUM_AGENT_COMM NUMBER(13,2) DEFAULT 0 NOT NULL,
    DAT_ENDT_START_DATE DATE,
    DAT_ENDT_END_DATE DATE,
    TXT_USER_ID VARCHAR2(8 BYTE),
    NUM_PC_ID NUMBER(2),
    NUM_SESSIO_ID NUMBER(5),
    NUM_PIN_CODE NUMBER(6),
    CUR_SPECIAL_DISCOUNT NUMBER(13,2),
    DAT_PROPOSAL_DATE DATE DEFAULT trunc(sysdate),
    CUR_ENDT_STAMP_DUTY NUMBER(11,2) DEFAULT 0 NOT NULL,
    NUM_ENDT_POLICY_NUMBER NUMBER(20) DEFAULT 0 NOT NULL,
    TXT_ENDT_FLAG CHAR(1 BYTE),
    NUM_INSTMNT_NO NUMBER(2) DEFAULT 0 NOT NULL,
    NUM_PREVIOUS_COMPANY_CODE NUMBER(6),
    NUM_COUNTRY_CODE NUMBER(3) NOT NULL,
    NUM_CURRENCY_CODE NUMBER(3) NOT NULL,
    NUM_AGENT_COMM_RATE NUMBER(4,2),
    NUM_SPECIAL_DISCOUNT_RATE NUMBER(4,2),
    DAT_COVERNOTE_RCVD_DATE DATE,
    TXT_SECTOR_CODE VARCHAR2(5 BYTE) NOT NULL,
    NUM_CLASS_CODE NUMBER(3) NOT NULL,
    TXT_MANUAL_CODE VARCHAR2(3 BYTE) NOT NULL,
    TXT_CUST_POLICY_NO VARCHAR2(20 BYTE) NOT NULL,
    TXT_CUST_ENDT_POLICY_NO VARCHAR2(20 BYTE) NOT NULL,
    DAT_LAST_UPDT_DTTM_DATE DATE DEFAULT sysdate NOT NULL,
    TXT_ARCHIVAL_STATUS CHAR(1 BYTE) DEFAULT 'F' NOT NULL,
    NUM_RENEWAL_POLICY_NO NUMBER(20) DEFAULT 0 NOT NULL,
    TXT_LAST_RECORD_STATUS CHAR(2 BYTE) NOT NULL,
    TXT_EMAIL_ADDRESS VARCHAR2(200 BYTE),
    NUM_SUB_CLASS_CODE NUMBER(3),
    CUR_STAFF_DISCOUNT NUMBER(13,2),
    CUR_GROUP_DISCOUNT NUMBER(13,2),
    CUR_LONGTERM_DISCOUNT NUMBER(13,2),
    CUR_TERRORISM_LOADING NUMBER(13,2),
    NUM_REINSTATEMENT_CLAIM_NO NUMBER(20),
    NUM_AGENT_MOD_COMM_RATE NUMBER(4,2),
    TXT_BUSINESS_FLAG VARCHAR2(3 BYTE),
    YN_SEZ NUMBER(1),
    TXT_PAN_NO VARCHAR2(15 BYTE),
    TXT_COMM_SHARE VARCHAR2(2 BYTE),
    TXT_CROSS_REFERENCE_NUMBER VARCHAR2(200 BYTE),
    DAT_CROSS_REFERENCE_DATE DATE,
    NUM_GROUP_CODE NUMBER(8),
    TXT_PRODUCT_TYPE VARCHAR2(2 BYTE),
    DAT_ACTUAL_EXPIRY_OF_POLICY DATE
    )

  • PL/SQL NUMERIC VALUE ERROR

    Hi ,
    We have following code and sending the data through attachnmet its giving the pl/sql numeric value error.
    Please correct me.
    __Code Details:::__
    CREATE OR REPLACE PROCEDURE APPS.print_reports
    IS
    wfile_handle UTL_FILE.file_type;
    lv_file VARCHAR2 (100);
    lv_date VARCHAR2 (20);
    mail_conn UTL_SMTP.connection;
    lv_rep_headers VARCHAR2 (32000);
    p_o_srv_result xxcss_prf_report_pkg.ref_cur_srv_prog;
    lv_str_type XXCSS_PRF_STRING;
    lv_line VARCHAR2 (32767);
    lv_send_to VARCHAR2 (200);
    lv_host_name VARCHAR2 (200) := 'outbound.cisco.com';
    l_vtab CHAR := CHR (9);
    lv_from VARCHAR2 (200) := '[email protected]';
    lv_att_file_name VARCHAR2 (200);
    lv_path VARCHAR2 (200);
    p_request_type VARCHAR2 (1) := 'E';
    p_request_id NUMBER;
    errbuf VARCHAR2 (2000);
    retcode NUMBER;
    crlf VARCHAR2 (2) := CHR (13) || CHR (10);
    lv_line_data Clob;
    lv_clob clob;
    BEGIN
    BEGIN
    SELECT VALUE
    INTO lv_path
    FROM v$parameter
    WHERE NAME = 'utl_file_dir';
    EXCEPTION
    WHEN OTHERS
    THEN
    lv_path := '\tmp';
    END;
    lv_rep_headers :=
    'REGION'
    || CHR (9)
    || 'COUNTRY'
    || CHR (9)
    || 'CUSTOMER NAME'
    || CHR (9)
    || 'ERP CUSTOMER NUMBER'
    || CHR (9)
    || 'PROFILE ID'
    || CHR (9);
    FOR i IN ( SELECT DISTINCT srv_program_id srv_prgm
    FROM xxcss_prf_cust_srv_programs
    ORDER BY srv_program_id ASC)
    LOOP
    lv_rep_headers := lv_rep_headers ||i.srv_prgm || CHR (9);
    END LOOP;
    lv_rep_headers := lv_rep_headers || CHR (13);
    BEGIN
    XXCSS_PRF_REPORT_PKG.offline_daemon (p_request_id,
    p_request_type,
    p_o_srv_result,
    errbuf,
    retcode);
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.PUT_LINE ('Error in Offline');
    END;
    lv_att_file_name := 'Eligibility_reports'||p_request_id||'.xls';
    -- DBMS_OUTPUT.PUT_LINE (lv_rep_headers);
    wfile_handle := UTL_FILE.fopen (lv_path, lv_att_file_name, 'W');
    UTL_FILE.put_line (wfile_handle, lv_rep_headers);
    BEGIN
    LOOP
    FETCH p_o_srv_result INTO lv_str_type;
    EXIT WHEN p_o_srv_result%NOTFOUND;
    lv_line := NULL;
    FOR i IN 1 .. lv_str_type.COUNT
    LOOP
    lv_line := lv_line || lv_str_type (i) || CHR (9);
    END LOOP;
    lv_line := lv_line || CHR (13);
    UTL_FILE.put_line (wfile_handle, lv_line);
    END LOOP;
    lv_str_type.DELETE;
    END;
    UTL_FILE.fclose (wfile_handle);
    BEGIN
    wfile_handle := UTL_FILE.FOPEN (lv_path, lv_att_file_name, 'R');
    -- DBMS_OUTPUT.PUT_LINE ('inside file');
    LOOP
    UTL_FILE.GET_LINE (wfile_handle, lv_line_data,32767);
    -- DBMS_OUTPUT.PUT_LINE (lv_line_data);
    lv_clob := lv_clob || lv_line_data;
    END LOOP;
    UTL_FILE.FCLOSE (wfile_handle);
    EXCEPTION
    WHEN OTHERS
    THEN
    errbuf := sqlerrm;
    UTL_FILE.FCLOSE (wfile_handle); -- close file
    DBMS_OUTPUT.PUT_LINE ('Exception'||errbuf);
    NULL;
    END;
    DBMS_OUTPUT.PUT_LINE ('afterdata');
    --DBMS_OUTPUT.PUT_LINE (lv_line_data);
    SELECT email_id
    INTO lv_send_to
    FROM xxcss_prf_offline_report_tb
    WHERE request_id = p_request_id AND report_type = p_request_type;
    mail_conn := UTL_SMTP.open_connection (lv_host_name, 25);
    UTL_SMTP.Helo (mail_conn, lv_host_name);
    UTL_SMTP.Mail (mail_conn, 'sangrdas');
    UTL_SMTP.Rcpt (mail_conn, lv_send_to);
    UTL_SMTP.OPEN_Data(mail_conn) ;
    DBMS_OUTPUT.PUT_LINE ('Sending Data');
    UTL_SMTP.write_Data (
    Mail_Conn,
    'Date: '
    || TO_CHAR (SYSDATE, 'Dy, DD Mon YYYY hh24:mi:ss')
    || crlf
    || 'From: '
    || lv_from
    || crlf
    || 'Subject: ELIGIILITY Report_'
    || p_request_id
    || crlf
    || 'To: '
    || lv_send_to
    || crlf
    || 'MIME-Version: 1.0'
    || crlf
    || -- Use MIME mail standard
    'Content-Type: multipart/mixed;'
    || crlf
    || ' boundary="-----SECBOUND"'
    || crlf
    || '-------SECBOUND'
    || crlf
    || 'Content-Type: text/plain;'
    || crlf
    || 'Content-Transfer_Encoding: 7bit'
    || crlf
    || 'some message text'
    || crlf
    || -- Message body
    'more message text'
    || crlf
    || '-------SECBOUND'
    || crlf
    || 'Content-Type: text/plain;'
    || crlf
    || ' name="'|| lv_att_file_name||'"'
    || crlf
    || 'Content-Transfer_Encoding: 8bit'
    || crlf
    || 'Content-Disposition: attachment;'
    || crlf
    || ' filename="'
    || lv_att_file_name
    || '"'
    ||crlf
    ||crlf
    ||lv_clob
    || crlf
    ||crlf
    ||crlf
    || '-------SECBOUND');
    UTL_SMTP.CLOSE_Data(mail_conn) ;
    UTL_SMTP.quit (mail_conn);
    DBMS_OUTPUT.PUT_LINE ('After Mail');
    EXCEPTION
    WHEN OTHERS THEN
    errbuf := sqlerrm;
    DBMS_OUTPUT.PUT_LINE ('ERROR Sending Data'||errbuf);
    ROLLBACK;
    END;
    /

    Yet again, opening a new thread for an existing issue...
    Need help in UTL file
    Same old, same old...
    need a report code
    need to create the header dynamically for a report
    Would have thought you'd get the idea of posting on the forums by now.

  • Import Purchase orders failing with numeric/value error issue

    Import Purchase orders failing with numeric/value error issue

    Hi All,
    Import Purchase Orders program is failing with PL/SQL Numeric or Value Error.
    DECLARE
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 55
    Kindly help me to get the issue fixed

  • Pl/sql or numeric value error

    Hi
    I'm trying to append CLOB to CLOB (assuming both are not null and lenght is less than the max allowed) and getting the error, Why is that error coming, the length cobined is only 50k.
    PK_UTILITIES.sp_get_recs(site_id_i, entity_id_i, false, v_clob_str);
    v_len := DBMS_LOB.getlength(v_clob_str);
    IF (NVL(v_len,0) > 0 ) THEN
    DBMS_OUTPUT.PUT_LINE('Length: '||v_len);
    DBMS_LOB.WRITEAPPEND(XML_o,length(v_clob_str),v_clob_str);
    END IF;
    Thanks in advance
    Murthy

    We are using the same DBMS_LOB.appendAs I said above, you must do a DBMS_LOB.CreateTemporary to create and populate a LOB correctly.
    SQL> declare
      2    lob CLOB ;
      3  begin
      4    for idx in 1 .. 100
      5    loop
      6      dbms_lob.writeappend(lob, 4000, RPAD('*', 4000, '*')) ;
      7    end loop ;
      8    dbms_output.put_line(dbms_lob.getlength(lob)) ;
      9  end ;
    10  /
    declare
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified: ORA-22275
    ORA-06512: at "SYS.DBMS_LOB", line 789
    ORA-06512: at line 6
    SQL> declare
      2    lob CLOB ;
      3  begin
      4    lob := NULL ;
      5    for idx in 1 .. 100
      6    loop
      7      dbms_lob.writeappend(lob, 4000, RPAD('*', 4000, '*')) ;
      8    end loop ;
      9    dbms_output.put_line(dbms_lob.getlength(lob)) ;
    10  end ;
    11  /
    declare
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: invalid LOB locator specified: ORA-22275
    ORA-06512: at "SYS.DBMS_LOB", line 789
    ORA-06512: at line 7
    SQL> declare
      2    lob CLOB ;
      3  begin
      4    dbms_lob.createtemporary(lob, TRUE) ;
      5    for idx in 1 .. 100
      6    loop
      7      dbms_lob.writeappend(lob, 4000, RPAD('*', 4000, '*')) ;
      8    end loop ;
      9    dbms_output.put_line(dbms_lob.getlength(lob)) ;
    10    dbms_lob.freetemporary(lob) ;
    11  end ;
    12  /
    400000
    PL/SQL procedure successfully completed.
    SQL>

  • "Invalid text value" error when calling a web service from a workflow in SharePoint Online

    I'm trying to create a workflow that loops through a list in SharePoint Online using a REST web service call. However, I'm having
    some trouble trying to pass the authentication token as described in the following article.
    http://www.fabiangwilliams.com/2013/09/03/more-on-sharepoint-2013-r...
    Basically, the workflow stops right at the "Call web service" action, and the only error it tells me is the following.
    Invalid text value.
    A text field contains invalid data. Please check the value and try again
    Has anyone had success with web service calls to SharePoint Online?
    Dan Kreitz, Solutions Architect, Séafra Inc.

    Hi DanPoint,
    Thank you for your sharing!
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Invalid parameter value Error while Extending PoReqDistributionsVO

    Hi,
    My Requirement is to restrict user from enetring certain values in a field in iProcurement Page based on some condition. The attribute on which I have to place the validation is CodeCombinationId and the VO name is PoReqDistributionsVO. So, I extended the VO and generated the VORowImpl class for the extended VO. Please note that I have extended the VO just to override the setter method for the CodeCombinationId in the VORowImpl. I did not change any other thing on the VO. Once I deploy the code, I am getting the following error for the first time:
    ## Detail 0 ##
    oracle.jbo.InvalidParamException: JBO-25006: Invalid parameter value PoReqDistributionsVO for source passed to method ViewLinkImpl.setSource. Explanation: view def mismatch
    And then if I try to open the page again, it gives me multiple distribution lines. (Say for example I have only one distribution line for the requistion line and my distribution table PO_REQ_DISTRIBUTIONS_ALL has total 20 records, then all the 20 records are getting displayed in the front end.)
    So, clearly after I extended the VO, the viewlink is not able to identify the viewlink.
    I went through the following thread:
    oracle.jbo.InvalidParamException: JBO-25006: Invalid parameter value
    As suggested in the therad, I thought of copying all the view link related methods from the original VO files. But, I could not get any Viewlink related information in any of the three seeded files PoReqDistributionsVO.xml, PoReqDistributionsVOImpl.class and PoReqDistributionsVORowImpl.class. But I can find one View Link oracle.apps.icx.por.req.server.ReqLineToDistributionsVL in teh server which is linking PoRequisitionLinesVO to PoReqDistributionsVO.
    Could anyone suggest me what I need to do to resolve the issue.
    Edited by: 892480 on Oct 20, 2011 8:13 AM

    Hi Gurus,
    Any suggestion on the above issue?

  • Numeric value error

    hi,
    when i enter char data in numeric field i am getting frm40735,ora 06502 error in when validate item triger.how to give validation for this.

    As you are pretty new to the Forums, I strongly recommend you take a few minutes to review the following:
    <ul>
    <li>Oracle Forums FAQ
    <li>Before posting on this forum please read
    <li>10 Commandments for the OTN Forums Member
    <li>How to ask questions the smart way
    </ul>
    Following these simple guidelines will ensure you have a positive experience in any forum; not just this one! ;-)
    What is your Forms Version? The ORA-06502: PL/SQL: numeric or value error string error is typically caused when you try to convert a value from one data type to an unsupported data type. In other words, you try to convert a string to a number. It is also caused by trying to put a value in a variable that is larger than the variable supports. I recommend you run the Forms Debugger to see which line of code in your When-Validate-Item trigger is causing the error. If you don't know how to use the Forms Debugger you can use the old Output Message method (display a message in your code so you know where you are when your code executes) to discover where the error is caused.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • In formula column - I am getting current year - but get numeric value error

    Hello
    I defined a formula column as folllows:
    function CF_1Formula return char is
    thisyear char;
    begin
         select to_char(sysdate,'YYYY')
         into thisyear
         from dual;
         return thisyear;
    end;
    I get - Fatal Pl/Sql error. numeric or value error. What am I doing wrong here?

    Or replace the whole thing with
    RETURN to_char(sysdate,'YYYY');
    saving a pointless round trip to the database.

Maybe you are looking for

  • Safari crashing after a few seconds

    Hi, my safari is suddenly crashing on me. Looked at previous suggestions but none seems to fit it. here is the crash report Date/Time: 2009-02-13 09:05:00.909 -0500 OS Version: 10.4.11 (Build 8S2167) Report Version: 4 Command: Safari Path: /Applicati

  • MS Access Tables WIth Spaces

    Hi Everyone, I am trying to write an application which requires connection to an old MS Access database. Unfortunately some of the tables have spaces in the names. I can query all tables except those with spaces in the table names. I searched for how

  • Ipod touch flashing screen issue

    I have a 4th gen Ipod touch. A few days ago, a thin red line appeared near the bottom of the screen, about 1/4 of the way up. after a few days, it turned into a white line, and the screen flickers when using it. The line isn't there when I first star

  • IPhone 4 (Sprint) BSOD

    My daughter's iphone 4 froze about an hour ago and upon restarting it came up with the BSOD.  Is there anything we can do to save it??

  • HI two problems: I have failed my latest download and they said get support? 2. Export PDF gone wier

    Hi two problems I have jsut failed my latest update and i need to contact you 2. When exporting a PDF in Indesign it shows that the Black is not 100% AND SHOULD BE> When scrolling over it it doesnot register it as any percentage?? Whats going wrong?