123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- CREATE OR REPLACE PROCEDURE shanglifeecif.insuranceclaimthread_main()
- IS
- BEGIN
- insert into shanglifeecif.insuranceclaimthread (
- icthreadid ,
- crno ,
-
- policyno ,
-
-
-
-
- cnno ,
- losstime ,
-
- rpname ,
-
-
- lpscutid,
- lpname ,
- cndate ,
- lossdescribe ,
- crdate ,
- cndescribe ,
- claimstatus ,
- csdate ,
- relationship ,
- ccno ,
- ccstatus ,
-
- productid ,
- productname,
- ccamt ,
-
- claimcasestatus ,
- accidenttype,
- created_by ,
- created_time
-
-
- ) select
- row_number()over(),
- rgtno,
- contno,
- rptno,
- riskdate,
- rptorname,
- INSUREDNO,
- INSUREDNAME,
- rptdate,
- lloccurreason,
- rgtdate,
- accidentdetail,
- llclaimstate,
- auditdate,
- relation,
- clmno,
- llgettype,
- riskcode,
- riskname,
- realpay,
- llclaimstate,
- accidenttype,
- 'admin',
- sysdate()
- from shanghailifeecif.INSURANCE_CLAIM where contno is not null
-
- END;
|