Products | Versions |
---|---|
TIBCO Collaborative Information Manager | - |
Not Applicable | - |
Resolution:
Steps:
1. Create an oracle function which returns the <sequnce>.nextval in the database. Eg:
function test_seq return number is
v_num number;
begin
select MQ_SEQUENCE_1.NEXTVAL into v_num from dual;
return v_num;
end;
2. In the inputmap for the master catalog, in the PRODUCTID field, call the oracle fuction, test_seq().
This will map the <sequence>.nextval to the PRODUCTID for each record.