0

I am writing a workflow in Siebel. I have a Siebel Operation box and I want to add some logic in the Input Argument tab. What I want is to compare a workflow input parameter (Comment) with a field of the main business component (BCField).

I have something like this:

Field Input Arguments

Field: Comment

Type: Expression

Value: IIf([&Comment] IS NULL,[BCField], [&Comment])

The logic here is if the workflow parameter Comment is NULL then set Comment = BCField. Otherwise, do nothing (or Comment = Comment).

If I try this I get an error: Cannot parse expression.(SBL-BPR-00121) because Siebel doesn't recognize BCField.

There is way to do this?

Thanks.

4

1 回答 1

0

我找到了怎么做:

将您想要读取的字段的 BC 放在 Input Arguments 选项卡的 Business Component Name 字段中。

字段输入参数

字段:评论

类型:表达式

价值:IIf([&Comment] IS NULL,[BCField], [&Comment])

业务组件名称:YourBC

于 2012-03-27T09:42:55.567 回答