Question

I have a Form Applet and it has the Field SERIAL_NUM From the S_CASE Table , but whan i wont to insert a new record i get the Field Empty , how can i ganarate a SERIAL_NUM to insert to the table like the ones in the S_CASE table , is there and Predefult expretion that dose it ?

Best Regards

Was it helpful?

Solution

In the Siebel Object Type Business Component Field

has attribute named

Predefault Value

you can provide Siebel valid expression to populate value when creating new record using expression

Field: 'Id'

or

Expr: 'RowIdToRowIdNum ([Id])'.

Alternatively you can also write Server side script on

Siebel Object Type Business Component

in the method

BusComp_PreNewRecord

to populate customized value when creating new record.

Alternatively you can also use

Database Trigger

which can also populate customized value to columns and will be available in Business Component Field value.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top