Click here to Skip to main content
15,925,042 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
CREATE OR REPLACE FUNCTION abc(
i_SERVICE_DETAILS IN T_ser_dtls,
0_SERVICE_DETAILS OUT xmltype;
) RETURN NUMBER
AS
var1 varchar2(30);
........
........
begin
body of the fun
end;
/

CREATE OR REPLACE
TYPE "T_ser_dtls"
(
ID VARCHAR2 (50),
CODE VARCHAR2 (3),
SERVICE VARCHAR2 (10),
C_TYPE VARCHAR2 (1)
) NOT FINAL;
/

i want to debug the above function by passing the respective values of type how to do that?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900