HI Team,
I am executing PACKAGE i am getting below error message
ORA-01438: value larger than specified precision allowed for this column tips
I see in my package same procedure have multiple time with parameter changes. Is it making any pro.
syntax using my package is
set serveroutput on
declare
v_rq SERV_REQ_RESULT_LIST;
begin
v_rq := sa_req.F_CREATE
( SERV_REQ_ATTR_LIST (
A ('REQUEST TYPE', 'REDPLP'),
A ('SUB ID', '1271344'),
A ('SUB ID TYPE' ,'Q'),
A ('USER SEQ' ,'22'),
A ('EXTERNAL REF', 'ABD323'),
A ('REASON', 'RED')
)
, NULL
, NULL
, NULL
);
end;
/