cancel
Showing results for 
Search instead for 
Did you mean: 

IsSet() is not supported in BO Screen..

chphaniv
Explorer
0 Kudos

Hello,

I am new to C4C, and facing some issue using ABSL in scripts. Please help...

I have an association referring to the Employee business object in my custom business object...

association ToResponsibleEmployee to Employee;

in the BO script, I have a logic something like this....

if (!this.ToResponsibleEmployee.IsSet() ) {

....

}

This is working in the objects that I have created in 1702 version. But in the new 1705 version, I am getting error "IsSet() is not supported". I checked the code that was created in 1702, and I can see that this still working, and also the option is showing up in the context menu of ToResponsibleEmployee.

Any idea what did I miss? Thanks in advance....

Accepted Solutions (1)

Accepted Solutions (1)

former_member422907
Contributor

Hi,

You have to use following syntax from 1705:

if (!this.GetFirst().ToResponsibleEmployee.IsSet() ) {
....

}

br,

Zoran Galijanic

Former Member
0 Kudos

It's working. So where can I see description of new syntax from 1705 ?

Answers (0)